fhir-py | FHIR Client for python
kandi X-RAY | fhir-py Summary
kandi X-RAY | fhir-py Summary
fhir-py is a Jupyter Notebook library. fhir-py has no bugs, it has no vulnerabilities, it has a Permissive License and it has low support. You can download it from GitHub.
FHIR Client for python
FHIR Client for python
Support
Quality
Security
License
Reuse
Support
fhir-py has a low active ecosystem.
It has 118 star(s) with 29 fork(s). There are 9 watchers for this library.
It had no major release in the last 12 months.
There are 21 open issues and 47 have been closed. On average issues are closed in 129 days. There are 3 open pull requests and 0 closed requests.
It has a neutral sentiment in the developer community.
The latest version of fhir-py is v1.3.1
Quality
fhir-py has 0 bugs and 0 code smells.
Security
fhir-py has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
fhir-py code analysis shows 0 unresolved vulnerabilities.
There are 0 security hotspots that need review.
License
fhir-py is licensed under the MIT License. This license is Permissive.
Permissive licenses have the least restrictions, and you can use them in most projects.
Reuse
fhir-py releases are available to install and integrate.
Installation instructions are not available. Examples and code snippets are available.
fhir-py saves you 1062 person hours of effort in developing the same functionality from scratch.
It has 2406 lines of code, 260 functions and 15 files.
It has medium code complexity. Code complexity directly impacts maintainability of the code.
Top functions reviewed by kandi - BETA
kandi has reviewed fhir-py and discovered the below as its top functions. This is intended to give you an instant insight into fhir-py implemented functionality, and help decide if they suit your requirements.
- Fetch a single resource by id
- Clone this resource
- Create a new resource
- Perform a single resource
- Validate this resource
- Recursively convert values from nested lists
- Convert the object to a dictionary
- Return a reference to this resource
- Reference to this resource
- Execute an operation
- Get resource path
- Get a value by path
- Return the value corresponding to the given path
- Fetch bundle resources
- Returns a list of resource resources
- Refreshes the resource
- Refresh the resource
- Fetch the first result
- Resolve this resource
- Perform an HTTP request
- Convert to a reference
- Returns the version of the given package
- Return a resource
- Validate the resource
- Fetch a single resource
- Fetch resources from the server
Get all kandi verified functions for this library.
fhir-py Key Features
No Key Features are available at this moment for fhir-py.
fhir-py Examples and Code Snippets
import asyncio
from fhirpy import AsyncFHIRClient
async def main():
# Create an instance
client = AsyncFHIRClient(
'http://fhir-server/',
authorization='Bearer TOKEN',
)
# Search for patients
resources = client.
patients = client.resources('Patient')
patients.search(birthdate__gt='1944', birthdate__lt='1964')
# /Patient?birthdate=gt1944&birthdate=lt1964
patients.search(name__contains='John')
# /Patient?name:contains=John
patients.search(name=['John',
patient_postal = patient.get_by_path(['resource', 'address', 0, 'postalCode'])
# get_by_path can be also used on any nested attribute
patient_name = patient.name[0]
patient_fullname = '{} {}'.format(
patient_name.get_by_path(['given', 0]),
p
Community Discussions
No Community Discussions are available at this moment for fhir-py.Refer to stack overflow page for discussions.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install fhir-py
You can download it from GitHub.
Support
For any new features, suggestions and bugs create an issue on GitHub.
If you have any questions check and ask questions on community page Stack Overflow .
Find more information at:
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page